home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Universe - The Gold Collection
/
Shareware Universe The Gold Collection.iso
/
graphics
/
flis
/
icon.poc
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-04-19
|
341 b
|
23 lines
//
// quick and dirty poco to write an icon to the file icon.bin
//
//
// if anyone tidies it up, please fax or send the changes to me
//
main() {
int x;
int y;
FILE *handle;
handle = fopen("icon.bin","w");
for (y=0; y<32; y++) {
for (x=0; x<32; x++) {
fputc(GetDot(x,y), handle);
}
}
fclose(handle);
}